Statistics`MovingAverage` ========================= Given a list of data, you can calculate means for subsets of the data. MovingAverage gives such means repetitively for subsequent subsets of a determined length. The first moving average takes subsets of length 2, the second takes subsets of length 3, and so forth. The result of the r moving average is a list of n - r means, each calculated with r + 1 elements, where n is the length of the list. MovingAverage[list, r] give a list of the r^th moving averages MovingAverage[{list_1, list_2, ...}, r] give the lists of the r^th moving averages for the columns of the matrix formed by the given lists ^^Moving average functions^^ This loads the package. In[1]:= <